mirror of
https://github.com/zrwusa/data-structure-typed.git
synced 2024-11-10 08:04:05 +00:00
28 lines
662 B
JSON
28 lines
662 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": "src",
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"inlineSourceMap": false,
|
|
"lib": ["esnext"],
|
|
"listEmittedFiles": false,
|
|
"listFiles": false,
|
|
"moduleResolution": "node",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"pretty": true,
|
|
"resolveJsonModule": true,
|
|
"rootDir": "src",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"traceResolution": false,
|
|
"types": ["node", "jest"]
|
|
},
|
|
"compileOnSave": false,
|
|
"exclude": ["node_modules", "dist"],
|
|
"include": [
|
|
"./src/**/*.ts", // Include your .ts files
|
|
]
|
|
}
|