18 lines
354 B
JSON
18 lines
354 B
JSON
{
|
|
"include": ["**/*.ts"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"useDefineForClassFields": true,
|
|
"moduleResolution": "node10",
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@core/*": ["../core/*"]
|
|
},
|
|
"allowSyntheticDefaultImports": true,
|
|
"noEmit": true
|
|
}
|
|
}
|