QR-Everywhere/tooling.tsconfig.json
2025-01-17 14:00:37 +01:00

31 lines
663 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"lib": [
"ESNext"
],
"module": "ESNext",
"outDir": "./tools/",
"rootDir": "./tools/",
"removeComments": true,
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"types": [
"node",
"chrome"
]
},
"include": [
"./tools/*.ts"
],
"exclude": [
"node_modules",
"./src/*.ts",
"./src/**/*.ts",
"./dist/*.ts",
"./dist/*.js"
]
}