react/tsconfig.json

19 lines
434 B
JSON
Raw Normal View History

2020-04-25 02:27:45 +02:00
{
"compilerOptions": {
2020-07-20 11:44:58 +02:00
"module": "ESNext",
2020-04-25 02:27:45 +02:00
"moduleResolution": "node",
2020-07-20 11:44:58 +02:00
"target": "ESNext",
"lib": ["dom", "esnext"],
"outDir": "dist",
2020-05-11 13:47:21 +02:00
"jsx": "react",
"allowSyntheticDefaultImports": true,
2020-04-25 02:27:45 +02:00
"esModuleInterop": true,
2020-10-05 09:09:42 +02:00
"baseUrl": "src",
2020-04-25 02:27:45 +02:00
"sourceMap": true,
2020-07-09 14:33:22 +02:00
"declaration": true,
"importHelpers": true,
"strict": true
2020-04-25 02:27:45 +02:00
},
2020-10-14 14:05:45 +02:00
"include": ["./src/@types", "./src/hooks", "./src/index.ts"]
2020-04-25 02:27:45 +02:00
}