21 lines
506 B
JSON
21 lines
506 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"module": "es2020",
|
|
"moduleResolution": "node",
|
|
"rootDir": "./src",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "./build",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"experimentalDecorators": true,
|
|
"strictPropertyInitialization": false,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noImplicitAny": false,
|
|
}
|
|
}
|