mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
20 lines
457 B
JSON
20 lines
457 B
JSON
{
|
|
// "extends": "@tsconfig/strictest/tsconfig.json",
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"types": [],
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"paths": {},
|
|
"skipLibCheck": true
|
|
},
|
|
"files": ["./src/extension.ts"],
|
|
"include": ["src/*.ts"],
|
|
"exclude": [".ts-for-girrc.js", ".eslintrc.cjs"]
|
|
}
|