19 lines
393 B
JSON
19 lines
393 B
JSON
{
|
|
"include": ["**/*.ts"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"moduleResolution": "bundler",
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@core/*": ["../core/*"]
|
|
},
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true
|
|
}
|
|
}
|