mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 19:46:20 +00:00
24 lines
510 B
JSON
24 lines
510 B
JSON
{
|
|
"compilerOptions": {
|
|
// General settings for code interpretation
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"lib": ["ESNext"],
|
|
"types": [],
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"noEmitOnError": false,
|
|
"baseUrl": "./",
|
|
"rootDir": ".",
|
|
// General settings for code generation
|
|
"removeComments": false,
|
|
"inlineSourceMap": false,
|
|
"inlineSources": false,
|
|
"newLine": "LF"
|
|
},
|
|
"include": ["./gvc-1.0.d.ts"]
|
|
}
|
|
|
|
|