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