39 lines
856 B
JSON
39 lines
856 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Basic Options */
|
|
"target": "es2018",
|
|
"module": "esNext",
|
|
"lib": ["esnext", "dom"],
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"jsx": "react",
|
|
"incremental": true,
|
|
"noEmit": true,
|
|
|
|
/* Strict Type-Checking Options */
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
|
|
/* Additional Checks */
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
|
|
/* Module Resolution Options */
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
/* Support absolute /imports/* with a leading '/' */
|
|
"/*": ["*"]
|
|
},
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"preserveSymlinks": true
|
|
},
|
|
"exclude": [
|
|
"./.meteor/**",
|
|
"./packages/**"
|
|
]
|
|
} |