konoplayer/apps/playground/tsconfig.json

20 lines
367 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"composite": true,
"target": "ES2020",
"outDir": "./dist",
"experimentalDecorators": true,
"module": "ESNext",
"moduleResolution": "bundler",
"useDefineForClassFields": false,
"paths": {
"@/*": [
"./src/*"
]
}
},
"include": [
"src"
]
}