Files
godot-vscode-plugin/tsconfig.json
Geequlim f07e1154ef Improve native documentation webview renderer
Make prism as a custom lib instead of node module to reduce the binary size
2019-10-08 19:34:47 +08:00

20 lines
251 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"outDir": "out",
"lib": [
"es2020",
"dom"
],
"sourceMap": true,
"rootDir": "src",
"strict": false,
"allowJs": true
},
"exclude": [
"node_modules",
"out"
]
}