30 lines
617 B
JSON
30 lines
617 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"target": "ESNext",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"erasableSyntaxOnly": true,
|
|
"allowImportingTsExtensions": true,
|
|
"paths": {
|
|
"#root/*": [
|
|
"./src/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
]
|
|
}
|