19 lines
425 B
JSON
19 lines
425 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["ES2022"],
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"baseUrl": ".",
|
|
"typeRoots": ["./types"],
|
|
"skipLibCheck": true,
|
|
"outDir": "./dist",
|
|
"sourceMap": false
|
|
},
|
|
"include": ["ambient.d.ts"],
|
|
"files": ["extension.ts", "prefs.ts"]
|
|
}
|