Files
komodo/util/tsconfig.json
2022-05-31 22:54:03 +03:00

23 lines
429 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"lib": [
"ESNext"
],
"module": "ESNext",
"moduleResolution": "node",
"target": "ESNext",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"noImplicitAny": false,
"rootDir": "/",
"resolveJsonModule": true,
"noEmit": true
},
"include": [
"."
]
}