mirror of
https://github.com/lukin/keywind.git
synced 2025-01-09 09:26:24 +00:00
21 lines
522 B
JSON
21 lines
522 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"lib": ["ESNext", "DOM"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"noEmit": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true
|
|
},
|
|
"include": ["src"]
|
|
}
|