data-structure-typed/tsconfig.json

39 lines
847 B
JSON
Raw Normal View History

2023-06-15 16:34:28 +00:00
{
"compilerOptions": {
"outDir": "./lib",
2023-06-15 16:34:28 +00:00
"declaration": true,
"declarationDir": "./lib",
"module": "CommonJS",
"target": "ES6",
2023-06-15 16:34:28 +00:00
"lib": [
"esnext",
"dom"
2023-06-15 16:34:28 +00:00
],
"strict": true,
"esModuleInterop": true,
"moduleResolution": "node",
2023-08-11 14:46:43 +00:00
"skipLibCheck": true,
"downlevelIteration": true,
"experimentalDecorators": true,
2023-09-19 09:00:25 +00:00
// "removeComments": true,
2023-06-15 16:34:28 +00:00
// "allowJs": true,
// "allowSyntheticDefaultImports": true,
// "forceConsistentCasingInFileNames": true,
// "noFallthroughCasesInSwitch": true,
// "resolveJsonModule": true,
// "isolatedModules": true,
// "noEmit": true,
2023-08-11 14:46:43 +00:00
"typeRoots": [
"node_modules/@types"
]
2023-06-15 16:34:28 +00:00
},
2023-08-11 14:46:43 +00:00
"include": ["src/**/*.ts", "src/**/*.js"],
2023-06-15 16:34:28 +00:00
"exclude": [
"node_modules",
"lib",
2023-06-15 16:34:28 +00:00
"dist"
]
}