mirror of
https://github.com/utleysam/codeblock-crbasic.git
synced 2026-07-22 07:32:57 +00:00
20 lines
433 B
JSON
20 lines
433 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"strict": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"lib": ["ES2020", "DOM"],
|
||
|
|
"outDir": "./dist",
|
||
|
|
"sourceMap": false,
|
||
|
|
"baseUrl": ".",
|
||
|
|
"types": ["node"]
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts"],
|
||
|
|
"exclude": ["node_modules"]
|
||
|
|
}
|