TeaWeb/tools/trgen/tsconfig.json

22 lines
419 B
JSON
Raw Permalink Normal View History

2018-12-04 18:02:45 +00:00
{
"compilerOptions": {
"baseUrl": ".",
2023-11-17 20:47:09 +00:00
"skipLibCheck": true,
2018-12-04 18:02:45 +00:00
"moduleResolution": "node",
"module": "commonjs",
2023-11-17 20:47:09 +00:00
"lib": [
"es6"
],
2018-12-04 18:02:45 +00:00
"typeRoots": [],
2021-03-16 15:40:17 +00:00
"types": [],
"esModuleInterop": true
2018-12-04 18:02:45 +00:00
},
"files": [
"./Definitions.ts",
"./generator/JsRenderer.ts",
"./generator/TypeScript.ts",
"./webpack/Loader.ts",
"./webpack/Plugin.ts",
"./webpack/Utils.ts"
2018-12-04 18:02:45 +00:00
]
}