Notes/tsconfig.json

29 lines
555 B
JSON
Raw Normal View History

2024-02-16 20:54:54 +02:00
{
"compilerOptions": {
2024-07-18 21:22:10 +03:00
"moduleResolution": "Bundler",
"module": "ES2022",
"target": "ES2020",
"declaration": false,
2024-02-16 20:54:54 +02:00
"sourceMap": true,
2024-07-13 19:02:51 +03:00
"outDir": "./build",
2024-02-16 21:03:37 +02:00
"strict": true,
2024-02-16 21:38:09 +02:00
"noImplicitAny": true,
2024-02-17 19:09:36 +02:00
"resolveJsonModule": true,
"lib": ["ES2022"],
2024-05-01 11:32:08 +02:00
"downlevelIteration": true,
2024-07-14 13:03:06 +03:00
"skipLibCheck": true,
2024-07-19 00:54:43 +03:00
"esModuleInterop": true
2024-02-16 20:54:54 +02:00
},
"include": [
"./src/**/*.js",
2024-07-13 14:02:19 +03:00
"./src/**/*.ts",
"./*.ts",
"./spec/**/*.ts",
"./spec-es6/**/*.ts"
2024-02-16 20:54:54 +02:00
],
2024-02-17 12:33:20 +02:00
"exclude": ["./node_modules/**/*"],
"files": [
"src/types.d.ts"
2024-02-17 12:33:20 +02:00
]
2024-05-03 21:18:20 +02:00
}