mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 08:25:19 +01:00
29 lines
570 B
JSON
29 lines
570 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["es2018", "dom"],
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ES2015",
|
|
"baseUrl": ".",
|
|
"downlevelIteration": true,
|
|
"module": "commonJS",
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"paths": {
|
|
"*": [
|
|
"modules/*",
|
|
"web/app/*",
|
|
"node_modules/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"modules/**/*",
|
|
"web/app/**/*",
|
|
"externals.d.ts"
|
|
]
|
|
}
|