wimi/etc/tsconfig.json

21 lines
491 B
JSON
Raw Normal View History

2023-09-27 02:57:29 +02:00
{
2024-09-03 06:29:42 +02:00
"include": [
"../src/js/typings/globals.d.ts",
"../src/**/*.ts",
"../src/**/*.tsx",
],
"exclude": ["../node_modules"],
2023-09-27 02:57:29 +02:00
"compilerOptions": {
"strict": true,
"module": "commonjs",
"target": "ES2020",
"moduleResolution": "node",
"esModuleInterop": true,
2024-08-31 06:23:41 +02:00
"jsx": "react-jsx",
2023-09-27 02:57:29 +02:00
"lib": [ "ES2020", "DOM" ],
2024-09-03 06:29:42 +02:00
"baseUrl": "../src/",
2023-09-28 21:42:07 +02:00
"paths": { "~/*": ["js/*"] },
2023-09-28 23:10:15 +02:00
"types": ["node", "jest", "@testing-library/jest-dom", "@types/chrome"]
2023-09-27 02:57:29 +02:00
}
}