mirror of
https://github.com/rzuasti/oott.git
synced 2026-07-08 19:21:54 +02:00
20 lines
440 B
JSON
20 lines
440 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"module": "commonjs",
|
||
|
|
"target": "es2022",
|
||
|
|
"lib": ["es2022"],
|
||
|
|
"outDir": "lib",
|
||
|
|
"rootDir": "src",
|
||
|
|
"strict": true,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"declaration": true
|
||
|
|
},
|
||
|
|
"include": ["src"],
|
||
|
|
"exclude": ["src/**/*.test.ts", "lib", "node_modules"]
|
||
|
|
}
|