18 lines
386 B
JSON
18 lines
386 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"lib": ["ES2020", "DOM"],
|
|
"outDir": "public/js",
|
|
"sourceMap": true,
|
|
"baseUrl": "src/web",
|
|
"experimentalDecorators": true,
|
|
},
|
|
"include": [
|
|
"src/web/**/*",
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
],
|
|
}
|