36 lines
623 B
JSON
36 lines
623 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": [
|
|
"DOM",
|
|
"ES2020"
|
|
],
|
|
"module": "ESNext",
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "bundler",
|
|
"useDefineForClassFields": true,
|
|
"allowImportingTsExtensions": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@App/*": [
|
|
"src/*"
|
|
],
|
|
"@Pkg/*": [
|
|
"pkg/*"
|
|
]
|
|
},
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
}
|
|
} |