mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
36 lines
781 B
JSON
36 lines
781 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Basic Options */
|
|
"target": "es2018",
|
|
"module": "es2015",
|
|
"lib": ["esnext"],
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"jsx": "preserve",
|
|
"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 */
|
|
"moduleResolution": "node",
|
|
"types": ["node"],
|
|
"esModuleInterop": true,
|
|
"preserveSymlinks": true,
|
|
},
|
|
"exclude": [
|
|
"./tests/apps/**",
|
|
"./tests/packages/**",
|
|
"./static-assets/skel*/**",
|
|
"./static-assets/scaffolds*/**",
|
|
]
|
|
}
|