41 lines
862 B
JSON
41 lines
862 B
JSON
{
|
|
"compilerOptions": {
|
|
"strictNullChecks": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitAny": true,
|
|
"noUnusedParameters": true,
|
|
"experimentalDecorators": true,
|
|
"strict": true,
|
|
|
|
"paths": {
|
|
"*": [
|
|
"*",
|
|
"types/*",
|
|
"gi-types/*"
|
|
]
|
|
},
|
|
"target": "ES2018",
|
|
"baseUrl": ".",
|
|
"moduleResolution": "node",
|
|
"module": "ES2020",
|
|
"outDir": "js",
|
|
"lib": [
|
|
"es2020"
|
|
],
|
|
"skipLibCheck": true,
|
|
"typeRoots": [
|
|
"types",
|
|
"gi-types",
|
|
],
|
|
},
|
|
"include": [
|
|
"gi-types/gi.d.ts",
|
|
"types/ambient.d.ts",
|
|
"types/gjs.d.ts",
|
|
"src/**/*",
|
|
],
|
|
"exclude": [
|
|
"node_modules/@types/**",
|
|
],
|
|
}
|