mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-01 10:59:10 -05:00
26 lines
469 B
JSON
26 lines
469 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "node16",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "es2021",
|
|
"lib": ["es2021"],
|
|
"noImplicitAny": false,
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"*": [
|
|
"node_modules/*",
|
|
"src/types/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
}
|