mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-11 22:40:26 +01:00
21 lines
440 B
JSON
21 lines
440 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "node16",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "es2021",
|
|
"lib": ["es2021"],
|
|
"noImplicitAny": false,
|
|
"moduleResolution": "node16",
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"outDir": "build",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": ["node_modules/*", "src/types/*"]
|
|
}
|
|
},
|
|
"include": ["src"]
|
|
}
|