aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/tsconfig.json
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-08-12 19:54:46 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-08-12 19:54:46 +0200
commitd22c3b0c257f5daf5b401988a35ab9ce981a2341 (patch)
tree0a661c927c37b52197326d1c05e211daf9bd19e5 /subprojects/frontend/tsconfig.json
parentfix(language): rule parsing test (diff)
downloadrefinery-d22c3b0c257f5daf5b401988a35ab9ce981a2341.tar.gz
refinery-d22c3b0c257f5daf5b401988a35ab9ce981a2341.tar.zst
refinery-d22c3b0c257f5daf5b401988a35ab9ce981a2341.zip
refactor(frontend): move from Webpack to Vite
Also overhaulds the building and linting for frontend assets.
Diffstat (limited to 'subprojects/frontend/tsconfig.json')
-rw-r--r--subprojects/frontend/tsconfig.json23
1 files changed, 11 insertions, 12 deletions
diff --git a/subprojects/frontend/tsconfig.json b/subprojects/frontend/tsconfig.json
index 94c357c5..fcde9939 100644
--- a/subprojects/frontend/tsconfig.json
+++ b/subprojects/frontend/tsconfig.json
@@ -1,18 +1,17 @@
1{ 1{
2 "extends": "./tsconfig.base.json",
2 "compilerOptions": { 3 "compilerOptions": {
3 "target": "es2020",
4 "module": "esnext",
5 "moduleResolution": "node",
6 "esModuleInterop": true,
7 "allowSyntheticDefaultImports": true,
8 "jsx": "react", 4 "jsx": "react",
9 "strict": true,
10 "noImplicitOverride": true,
11 "noImplicitReturns": true,
12 "exactOptionalPropertyTypes": false,
13 "noEmit": true, 5 "noEmit": true,
14 "skipLibCheck": true 6 "lib": ["DOM", "DOM.Iterable", "ESNext"],
7 "types": ["vite/client"]
15 }, 8 },
16 "include": ["./src/**/*"], 9 "include": [
17 "exclude": ["./build/generated/sources/lezer/*"] 10 "src",
11 "types"
12 ],
13 "exclude": ["types/node"],
14 "references": [
15 { "path": "./tsconfig.node.json" }
16 ]
18} 17}