Notes/tsconfig.json

27 lines
495 B
JSON
Raw Permalink Normal View History

2024-02-16 20:54:54 +02:00
{
"compilerOptions": {
"module": "NodeNext",
"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-08-10 18:23:49 +02: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
}