16 lines
394 B
JSON
16 lines
394 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "CommonJS",
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"skipLibCheck": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": ["./"],
|
|
"exclude": ["node_modules"]
|
|
}
|