20 lines
446 B
JSON
20 lines
446 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES2020",
|
|
"lib": ["ES2020"],
|
|
"sourceMap": true,
|
|
"rootDir": "src",
|
|
"outDir": "out",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "out"]
|
|
}
|