mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
32 lines
672 B
JSON
32 lines
672 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "./dist",
|
|
"noEmit": true,
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"moduleResolution": "node",
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./types"
|
|
]
|
|
},
|
|
"include": [
|
|
"packages/**/*.ts",
|
|
"packages/**/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/node_modules/**",
|
|
"**/.npm/**",
|
|
"tools/static-assets/skel*/**",
|
|
"tools/static-assets/scaffolds*/**",
|
|
"tools/tests/**",
|
|
"tools/modern-tests/**"
|
|
]
|
|
} |