25 lines
635 B
JSON
25 lines
635 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"useDefineForClassFields": true,
|
|
"module": "nodenext",
|
|
"skipLibCheck": true,
|
|
|
|
"moduleResolution": "nodenext",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"erasableSyntaxOnly": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
"typeRoots": ["./node_modules/@types/"]
|
|
},
|
|
}
|