18 lines
327 B
JSON
18 lines
327 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"outDir": "./build/",
|
|
"target": "es5",
|
|
"lib": ["es2017", "dom"],
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"./static/js/**/*.ts"
|
|
]
|
|
}
|